From: Eli Zaretskii Date: Sat, 7 Aug 2010 10:11:07 +0000 (+0300) Subject: simple.el (delete-forward-char): Doc fix. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~7031 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=ed37213cb6331f3b1c22873e5da50980db577e07;p=emacs.git simple.el (delete-forward-char): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 18a11e133aa..77a5930fee7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2010-08-07 Eli Zaretskii + * simple.el (delete-forward-char): Doc fix. + * tutorial.el (help-with-tutorial): Hack safe file-local variables after reading the tutorial. diff --git a/lisp/simple.el b/lisp/simple.el index 43cb31b226b..c0d981ce180 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -895,7 +895,7 @@ the end of the line." (t (delete-char (- n) killflag)))) (defun delete-forward-char (n &optional killflag) - "Delete the previous N characters (following if N is negative). + "Delete the following N characters (previous if N is negative). If Transient Mark mode is enabled, the mark is active, and N is 1, delete the text in the region and deactivate the mark instead. To disable this, set `delete-active-region' to nil.